//blocks context menus from showing
//enabled by adding onContextMenu="blockMenu()" onSelectStart="blockMenu()"
//into the document body
function blockMenu(){
	window.event.returnValue = false;
}